home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005 / CHIP Utilities 2005.iso / dosapps / freedos / config.sys < prev    next >
Encoding:
Text File  |  2003-04-05  |  4.8 KB  |  107 lines

  1. REM ************************************************************************
  2. REM Sample CONFIG.SYS
  3. REM Please edit this file to suit your needs.
  4. REM See http://fd-doc.sourceforge.net/spec/config.html for
  5. REM details on commands available in CONFIG.SYS
  6. REM This is not necessarily an optimized CONFIG.SYS, 
  7. REM but should be a reasonable starting point.
  8. REM ************************************************************************
  9.  
  10. REM device=[d:][path]file [options]
  11. REM This will load the device driver specified by d:path\file (into
  12. REM normal aka conventional memory).  The options are for the driver
  13. REM itself; refer to documentation that came with your particular device
  14. REM for supported options and their usage.
  15.  
  16. REM devicehigh=[d:][path]file [options]
  17. REM This is just like device= statement, except it attempts to load
  18. REM the device driver into high memory first (failing that it should
  19. REM load it in conventional memory).  
  20. REM Note: The order you load devices may have a large impact on amount
  21. REM of free memory available.  In general try to load large (in memory
  22. REM usage) programs into high memory first.
  23. REM Important: You should have a high memory manager such as FDXMS or
  24. REM Himem installed (prior device=FDXMS.SYS or device=HIMEM.SYS) before
  25. REM using this option.
  26.  
  27. REM Load memory managers (refer to their docs for available options)
  28. REM Warning: most memory managers require newer (286/386/Pentium) computers.
  29. REM Here C:\UTIL refers to an arbitrary directory for non FreeDOS programs.
  30.  
  31. REM FDXMS & FDXXMS are extended memory managers (similar to himem)
  32. REM FDXMS supports up to 64MB of XMS memory & FDXXMS supports up to 4GB
  33. REM FDXMS.SYS [NUMHANDLES=nnn] [BIOS]
  34. REM NUMHANDLES specifies how many XMS handles available (default=32, min=2)
  35. REM BIOS indicates to use BIOS Int15 switching instead of internal method
  36. REM device=C:\FDOS\BIN\FDXMS.SYS /NUMHANDLES=16
  37. REM device=C:\FDOS\BIN\FDXXMS.SYS /NUMHANDLES=32
  38.  
  39. REM Freeware program to support UMBs for some computers
  40. REM Obtain from http://www.uwe-sieber.de/umbpci_e.html
  41. REM For additional information see http://members.aol.com/axcel216/umb.htm
  42. REM device=C:\UTIL\umbpci.sys
  43.  
  44. REM EMM286 Freeware expanded memory manager for 286s
  45. REM EMM286.EXE [mem in kb] [/H=hhh #EMM handles] [/S=sss #context save maps]
  46. REM device=C:\UTIL\EMM286.exe 256 /H=64 /S=7
  47.  
  48. REM EMM386 Standard (386+) expanded memory manager
  49. REM EMM386.EXE [NOEMS] [FRAME=XXXX] [EMM=XXXXX] [X=XXXX-XXXX] [I=XXXX-XXXX]
  50. REM Note: Current EMM386 included with FreeDOS is not fully compatible
  51. REM with other DOSes EMM386.  Additionally, it requires its included
  52. REM HIMEM.EXE instead of FDXMS.SYS (which it is incompatible with).
  53. REM device=C:\FDOS\BIN\HIMEM.EXE
  54. REM device=C:\FDOS\BIN\EMM386.EXE NOEMS FRAME=D000 EMM=20000
  55.  
  56. REM dos=high|low,umb|noumb
  57. REM indicates whether the kernel should try to load itself into
  58. REM high memory or only conventional (low), and whether to link
  59. REM upper memory blocks in with normal memory or not.  
  60. REM Note: only one set need be given, ie dos=high and dos=noumb are ok.
  61. REM Important: if you specify dos=high[,umb|noumb] then you must also
  62. REM load a high memory manager (first), ie FDXMS or HIMEM
  63. REM dos=high,noumb
  64. dos=low,noumb
  65.  
  66. REM files=nnn where nnn is in range 8-255 (default 8)
  67. REM Specifies how many files allowed open at once
  68. REM Note: there are other restrictions, so a given program
  69. REM       may not be able to actually open this many
  70. REM A good number is 20, though some programs suggest/require
  71. REM 30, 40, or even 255
  72. files=20
  73.  
  74. REM buffers=nn[,n] where nn is in range 1-99 & n is in range 1-8
  75. REM Memory buffers used by the kernel; primary[,secondary]
  76. buffers=20
  77.  
  78. REM The country statement is not currently supported by FreeDOS
  79. REM country=nnn[,[mmm][,[d:][path]file]]
  80. REM Enables/sets international features of DOS
  81. REM nnn is country code (001==US)
  82. REM mmm is code page (437 is default, 850 is updated form, 1252 for Windows)
  83. REM [drive][path]file specifies file with country specific data
  84. REM country=001,850,C:\FDOS\BIN\COUNTRY.SYS
  85.  
  86. REM lastdrive=x where x is last drive letter available for use; A-Z
  87. lastdrive=z
  88.  
  89. REM shell=[d:][path]file [options]
  90. REM Indicates the shell to use, often used to alter COMMAND.COM's behavior
  91. REM shell=C:\COMMAND.COM /E:256 /P
  92. REM shellhigh=C:\COMMAND.COM /E:256 /P
  93.  
  94. REM stacks=nn,nnn where nn is in range 0,8-64 and nnn is in range 32-512
  95. REM Changes number of stacks available
  96. REM nn is number of different stacks and nnn is size in bytes of each one
  97. REM stacks=16,256
  98.  
  99. REM version=x.y FreeDOS specific command to specify what DOS version to report
  100. REM version=6.2
  101.  
  102. REM general CD Driver (also requires FDCDEX loaded in AUTOEXEC.BAT)
  103. REM device=C:\UTIL\ATAPICDD.SYS /D:FDCD0001
  104.  
  105. REM ansi, enhanced CONsole driver
  106. REM device=C:\FDOS\BIN\NANSI.SYS /S
  107.